home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / wild / include / clib / module_protos.h < prev    next >
C/C++ Source or Header  |  1999-05-25  |  568b  |  27 lines

  1. #ifndef CLIB_MODULE_PROTOS_H
  2. #define CLIB_MODULE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: module_protos.h 2.00 (3.12.98)
  6. **
  7. **    modules libraries common prototypes.
  8. **
  9. */
  10.  
  11. #ifndef  EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14.  
  15. #ifndef  WILDPREFS_H
  16. #include <wild/wild.h>
  17. #endif
  18.  
  19. #include <utility/tagitem.h>
  20.  
  21. void        SetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  22. void        GetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  23. BOOL        SetupModule(struct WildApp *wapp,struct TagItem *tags);
  24. void        CloseModule(struct WildApp *wapp);
  25. BOOL        RefreshModule(struct WildApp *wapp);
  26.  
  27. #endc